home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 1.iso
/
toolbox
/
documents
/
ELF
/
addr1.f
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-11-11
|
240 b
|
13 lines
c file addr1.f
program addr1
integer foo1(1024)
integer foo2(1024)
common /aa/ foo1,foo2
c address of 1st common aa entry
write(6,10)%loc(foo1)
c address of 2nd common aa entry
write(6,10)%loc(foo2)
10 format(x,z)
stop
end